home *** CD-ROM | disk | FTP | other *** search
/ Mastering Internet Develo…oft ActiveX Technologies / Mastering Internet Development with ActiveX (1996)(Microsoft).iso / labs / lab06 / formdump / makefile < prev    next >
Encoding:
Makefile  |  1996-07-16  |  596 b   |  23 lines

  1. USE_ISAPI = 1
  2.  
  3. dll = 1
  4.  
  5. Proj = FormDump
  6.  
  7. !include <inetsdk.mak>
  8.  
  9. all: $(ObjDir)\$(Proj).Dll Install
  10.  
  11. $(ObjDir)\$(Proj).Dll: $*.Obj $*.Exp $(@D)\Keys.Obj $(@D)\Html.Obj
  12.  
  13. $(ObjDir)\$(Proj).Exp: $*.Obj
  14.  
  15. Install: $(WWWSCRIPTS)\SDK\$(Proj).Dll       \
  16.          $(WWWROOT)\SDK\$(Proj)\Default.Htm  \
  17.          $(WWWROOT)\SDK\$(Proj)\$(Proj).Cpp  \
  18.          $(WWWROOT)\SDK\$(Proj)\Html.Cpp     \
  19.          $(WWWROOT)\SDK\$(Proj)\Keys.Cpp     \
  20.          $(WWWROOT)\SDK\$(Proj)\Keys.h       \
  21.          $(WWWROOT)\SDK\$(Proj)\Html.h       \
  22.          $(WWWROOT)\SDK\$(Proj)\FormDump.Def
  23.